home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 96 / PC Zone #096.7z / Dppcz1200.mdf / Demos / Gunlok / data1.cab / Program_Executable_Files / scripts / decoyprojectile.gsh < prev    next >
Text File  |  2000-09-09  |  921b  |  35 lines

  1. //Projectile for long range audio decoy
  2. ////////////////////////////////////////////////////////////////////////////////////
  3.  
  4. // start wrapper - prevent multiple inclusions or recursive inclusions
  5.  
  6. //(this currently causes 'unrecognized preprocessor directive' warnings, until implemented)
  7. #ifndef INCLUDED_DECOYPROJECTILE_GSH
  8. #define INCLUDED_DECOYPROJECTILE_GSH
  9.  
  10. ////////////////////////////////////////////////////////////////////////////////////
  11.  
  12. hierarchy Hcy_DecoyProjectile
  13. {
  14.     file "objects\audio decoy.RIF"
  15.     name "audio decoy"
  16. }
  17.  
  18. projectile Prj_DecoyProjectile
  19. {
  20.     gravity        yes     // is this missile affected by gravity
  21.     damage        0     // in strength points
  22.     max range        81    //9m range
  23. }
  24.  
  25. role Rol_DecoyProjectile : Rol_DefaultProjectile
  26. {
  27.     shape        Hcy_DecoyProjectile
  28.  
  29.     projectile    Prj_DecoyProjectile
  30.  
  31.     identifier    "decoy_projectile"
  32. }
  33.  
  34. //end wrapper
  35. #endif    // INCLUDED_DECOYPROJECTILE_GSH